home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / pgld1102.zip / PGOLD.BAT < prev    next >
DOS Batch File  |  1994-02-23  |  564b  |  38 lines

  1. @Echo Off
  2. passport
  3. if ErrorLevel 1 GoTo ShowIntro
  4.  
  5. :Start
  6. Cls
  7. pg
  8.  
  9. :Begin
  10. If ErrorLevel 7 GoTo Transmit
  11. If ErrorLevel 6 GoTo RetransRecv
  12. If ErrorLevel 2 GoTo EDIToFlat
  13. If ErrorLevel 1 GoTo FlatToEDI
  14. If ErrorLevel 0 GoTo End
  15.  
  16. :ShowIntro
  17.   pg /I
  18.   GoTo Begin
  19.  
  20. :Transmit
  21.   if not exist expmgr.exe goto NoExpMgr
  22.   if not exist expm.bat goto NoExpMgr
  23.   call expm.bat demo
  24.   goto Start
  25.  
  26. :NoExpMgr
  27.   cls
  28.   echo The Communication Software is not available for this demo version.
  29.   goto Start
  30.  
  31. :RetransRecv
  32.  
  33. :EDIToFlat
  34.  
  35. :FlatToEDI
  36.  
  37. :End
  38.